Plug any Backtrader strategy into live Binance Cross-Margin trading. Long and short execution with bar-close discipline, live charts, and a clean config file.
Plug-and-play strategies Cross-margin long & short Bar-close discipline Live price & equity chartsATR breakout, trend-following, mean-reversion, ML filters — if it’s a Backtrader Strategy
class, it runs. Drop it in strategies/
and select by name.
Automated borrow/repay, precision-aware sizing, and notional checks so your live orders actually fill.
Bar-close execution and re-entry guards keep behavior consistent with your research. What you test is what you trade.
Edit config.json
for keys, symbol, strategy, and starting cash. No code changes required for retail users.
Real-time charts for price, entries/exits, and equity — monitor performance at a glance.
Ships with a PDF manual covering setup, strategy integration, and safe live operation.
Pick any Backtrader Strategy
class (e.g., ATRBreakoutStrategy
).
Update in the code your API keys, symbol (e.g., ETH/USDC
), cash, and poll time.
The bot mirrors strategy signals on Binance Cross-Margin with long/short support and live charts.
live_bot.py
with config-driven CLI and live chartsstrategies
folder with 50 advanced strategies.pdf manual
Yes. Add your class to strategies/
and reference it by name in config.json
. The bot instruments it to emit clean enter/exit events.
Yes. It borrows base asset on cross-margin for shorts and auto-repays on exit, with proper precision and min-notional handling.
Bar-close discipline executes only at candle close and blocks re-entry in the same bar to keep live behavior aligned with backtests.
Use the Retail executable, edit config.json
, and run. No Python setup needed.
Start with small size or paper trade. You control risk.